type go/types.typeWriter

15 uses

	go/types (current package)
		typestring.go#L76: type typeWriter struct {
		typestring.go#L85: func newTypeWriter(buf *bytes.Buffer, qf Qualifier) *typeWriter {
		typestring.go#L86: 	return &typeWriter{buf, make(map[Type]bool), qf, nil, nil, false}
		typestring.go#L89: func newTypeHasher(buf *bytes.Buffer, ctxt *Context) *typeWriter {
		typestring.go#L91: 	return &typeWriter{buf, make(map[Type]bool), nil, ctxt, nil, false}
		typestring.go#L94: func (w *typeWriter) byte(b byte) {
		typestring.go#L108: func (w *typeWriter) string(s string) {
		typestring.go#L112: func (w *typeWriter) error(msg string) {
		typestring.go#L119: func (w *typeWriter) typ(typ Type) {
		typestring.go#L322: func (w *typeWriter) typeSet(s *_TypeSet) {
		typestring.go#L357: func (w *typeWriter) typeList(list []Type) {
		typestring.go#L368: func (w *typeWriter) tParamList(list []*TypeParam) {
		typestring.go#L397: func (w *typeWriter) typeName(obj *TypeName) {
		typestring.go#L404: func (w *typeWriter) tuple(tup *Tuple, variadic bool) {
		typestring.go#L439: func (w *typeWriter) signature(sig *Signature) {